testing.common.w (field)
38 uses
testing (current package)
benchmark.go#L249: fmt.Fprintf(b.w, "%s--- FAIL: %s\n%s", b.chatty.prefix(), b.name, b.output)
benchmark.go#L264: fmt.Fprintf(b.w, "%s--- %s: %s\n%s", b.chatty.prefix(), tag, b.name, b.output)
benchmark.go#L277: fmt.Fprintf(b.w, "goos: %s\n", runtime.GOOS)
benchmark.go#L278: fmt.Fprintf(b.w, "goarch: %s\n", runtime.GOARCH)
benchmark.go#L280: fmt.Fprintf(b.w, "pkg: %s\n", b.importPath)
benchmark.go#L283: fmt.Fprintf(b.w, "cpu: %s\n", cpu)
benchmark.go#L702: w: os.Stdout,
benchmark.go#L715: main.chatty = newChattyPrinter(main.w)
benchmark.go#L730: fmt.Fprintf(b.w, "%-*s\t", s.maxLen, benchName)
benchmark.go#L738: w: b.w,
benchmark.go#L752: fmt.Fprintf(b.w, "%s--- FAIL: %s\n%s", b.chatty.prefix(), benchName, b.output)
benchmark.go#L757: fmt.Fprintf(b.w, "%-*s\t", s.maxLen, benchName)
benchmark.go#L762: fmt.Fprintln(b.w, results)
benchmark.go#L767: fmt.Fprintf(b.w, "%s--- BENCH: %s\n%s", b.chatty.prefix(), benchName, b.output)
benchmark.go#L812: w: b.w,
benchmark.go#L992: w: discard{},
fuzz.go#L320: t.parent.w = captureOut
fuzz.go#L322: t.w = indenter{&t.common}
fuzz.go#L370: fmt.Fprintf(f.w, "%v\n", err)
fuzz.go#L373: fmt.Fprintf(f.w, "Failing input written to %s\n", crashPath)
fuzz.go#L375: fmt.Fprintf(f.w, "To re-run:\ngo test -run=%s/%s\n", f.name, testName)
fuzz.go#L407: run(f.w, e)
fuzz.go#L497: root := common{w: os.Stdout} // gather output in one place
fuzz.go#L499: root.chatty = newChattyPrinter(root.w)
fuzz.go#L531: f.w = indenter{&f.common}
fuzz.go#L570: root := common{w: os.Stdout}
fuzz.go#L572: root.w = io.Discard
fuzz.go#L578: root.chatty = newChattyPrinter(root.w)
fuzz.go#L616: f.w = indenter{&f.common}
testing.go#L628: w io.Writer // For flushToParent.
testing.go#L857: if c.chatty != nil && (p.w == c.chatty.w || c.chatty.json) {
testing.go#L875: fmt.Fprintf(p.w, c.chatty.prefix()+format, args...)
testing.go#L1730: fmt.Fprintf(root.parent.w, "cleanup panicked with %v", r)
testing.go#L1839: t.w = indenter{&t.common}
testing.go#L2268: w: os.Stdout,
testing.go#L2275: t.chatty = newChattyPrinter(t.w)